home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / util / libs / PGPLib1_3.lha / PGP / include / c / libraries / pgp.h
C/C++ Source or Header  |  1998-03-28  |  803b  |  35 lines

  1. #ifndef  LIBRARIES_PGP_H
  2. #define  LIBRARIES_PGP_H
  3.  
  4. /*
  5. **  libraries/pgp.h
  6. **
  7. **  C definitions for pgp.library
  8. **
  9. **  $VER: pgp.h 1.1 (23.3.98)
  10. **
  11. */
  12.  
  13. #ifndef UTILITY_TAGITEM_H
  14. #include <utility/tagitem.h>
  15. #endif
  16.  
  17.  
  18.  
  19. /* Name / Version */
  20. #define PGPNAME      "pgp.library"
  21. #define PGPVERSION   1
  22.  
  23.  
  24. /* Tags */
  25. #define PGPTAG_OutFile      (TAG_USER + 1)      /* Encrypt,Decrypt,Sign */
  26. #define PGPTAG_UserId       (TAG_USER + 2)      /* Encrypt,Sign */
  27. #define PGPTAG_ConOutput    (TAG_USER + 3)      /* Encrypt,Decrypt,Sign */
  28. #define PGPTAG_Binary       (TAG_USER + 4)      /* Encrypt */
  29. #define PGPTAG_Break        (TAG_USER + 5)      /* Sign */
  30. #define PGPTAG_Password     (TAG_USER + 6)      /* Encrypt */
  31. #define PGPTAG_Sign         (TAG_USER + 7)      /* Encrypt */
  32.  
  33.  
  34. #endif   /* LIBRARIES_PGP_H */
  35.